type go.pact.im/x/pgxprocess.handle

12 uses

	go.pact.im/x/pgxprocess (current package)
		conn.go#L17: 	handle[pgx.Conn, *pgx.Conn]
		handle.go#L23: type handle[T any, P interface {
		handle.go#L31: func (h *handle[T, P]) Handle() P {
		handle.go#L35: func (h *handle[T, P]) Ping(ctx context.Context) error {
		handle.go#L43: func (h *handle[T, P]) Begin(ctx context.Context) (pgx.Tx, error) {
		handle.go#L51: func (h *handle[T, P]) BeginTx(ctx context.Context, txOptions pgx.TxOptions) (pgx.Tx, error) {
		handle.go#L59: func (h *handle[T, P]) Exec(ctx context.Context, sql string, args ...any) (pgconn.CommandTag, error) {
		handle.go#L67: func (h *handle[T, P]) Query(ctx context.Context, sql string, args ...any) (pgx.Rows, error) {
		handle.go#L75: func (h *handle[T, P]) QueryRow(ctx context.Context, sql string, args ...any) pgx.Row {
		handle.go#L83: func (h *handle[T, P]) CopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error) {
		handle.go#L91: func (h *handle[T, P]) SendBatch(ctx context.Context, b *pgx.Batch) pgx.BatchResults {
		pool.go#L17: 	handle[pgxpool.Pool, *pgxpool.Pool]